Example of default bindings mod to toggle switch

Gear Lever A10-C bind to (EAC) BTN24 Up/Down

Default bindings:
"c:\___\DCS\Mods\aircraft\A-10C\Input\A-10C\joystick\Throttle - HOTAS Warthog.lua"

TMWH 'EAC' left bottom button, made to Toggle

find and delete or comment out (EAC) line with {key = 'JOY_BTN24'} 

[CODE]
-- Autopilot
..
{combos = {{key = 'JOY_BTN24'}}    , down = iCommandPlane_EAC_ARM     , up = iCommandPlane_EAC_OFF       , name = _('EAC Arm/Off')               , category = _('LASTE Control Panel')},
[/CODE]

add line
category = _('Landing gear panel')}
name = _('GEAR on BTN24') 
as in:

[CODE]
{combos = {{key = 'JOY_BTN24'}}	, down = iCommandPlaneGearUp     , up = iCommandPlaneGearDown      , name = _('GEAR on BTN24') 			  , category = _('Landing gear panel')},
[/CODE]

'GEAR on BTN24' now shows in DCS Control under category Landing gear panel with BTN24 as default binding

included JSGME_MODS ready

